home *** CD-ROM | disk | FTP | other *** search
- package org.apache.xalan.xpath;
-
- import java.io.Serializable;
-
- public class KeyDeclaration implements Serializable {
- public String m_name;
- public XPath m_match;
- public XPath m_use;
- public static int UNBUILT = -1;
- public static int BUILDING;
- public static int BUILT = 1;
- public int m_buildState;
-
- public KeyDeclaration(String var1, XPath var2, XPath var3) {
- this.m_buildState = UNBUILT;
- this.m_name = var1;
- this.m_match = var2;
- this.m_use = var3;
- }
- }
-